Getting custom post types to properly display alphabetically

as ChrisL said in the comments, you should add order and orderby to your arguments :

 $args = array(
       'post_type' => 'totem',
       'posts_per_page' => -1,
       'orderby' => 'title',
       'order' => 'ASC'
    );