Display custom post type taxonomy and month

Do a simple meta_query and compare by meta_value_num.

array(
    'post_type' => 'webcast',
    'meta_key'  => 'webcast-date',
    'meta_value'    => array( time(), strtotime('+60 days') ),
    'meta_type'     => 'numeric',
    'meta_compare'  => 'BETWEEN',
    'orderby '  => 'meta_value_num',
    'order'     => 'ASC'
);

For an easy example. You can find more complex examples on the site filed under – even more if you combine that with a search for »meta_value_num date«.