Custom post with more than one custom taxonomy

You are using WP_query, try to change your loop to:

<?php
if ($wp_query->have_posts() ):
     while ($wp_query->have_posts() ) : $wp_query->the_post();
    // Do stuff here
    endwhile; 
endif;
wp_reset_postdata();
?>