Of course, after typing all of that, I figure it out.
Just needed to add ‘posts_per_page’=> -1, to my args array so it would display everything.
$args = array(
'post_type' => 'branch',
'order' => 'ASC',
'posts_per_page'=> -1,
'orderby' => 'title'
);
Hope this helps someone else, or if someone swings by and notices that I’m doing something terribly wrong here, I’m all ears.