You could use the WP_Term_Query
to query terms in a specific order.
$terms_query = new WP_Term_Query(array(
'taxonomy' => 'authors',
'orderby' => 'slug__in',
'slug' => array(
'sally',
'john',
'amanda
)
));