//d M Y
This is eventually what led to the solution I needed: http://www.advancedcustomfields.com/resources/field-types/date-picker/
Advanced Custom Field setting to yymmdd as recommend via that url.
This is what I used to query the posts:
$args = array(
'post_status' => 'publish',
'posts_per_page' => 6,
'paged' => $paged,
'orderby' => 'meta_value_num',
'meta_query' => array(
array(
'key' => 'event_date',
'type' => 'DATE',
),
),
)
'order' => 'DESC'
);