WP_Query, Taxonomy, list of attached items to a Term, sorted

You’re looking for custom posts, but don’t define post_type in your query, which means it will default to the core post post type only.

You need to incorporate

'post_type' => 'my-cpt'

into your query.