How can I alter the featured product image on the Dawn theme?

You have to make changes . Edit code of DAWN theme and make changes to /sections/main-product.liquid file Line# 59 and 66

line 59

{%- assign featured_media = product.selected_or_first_available_variant.featured_media -%}

To

{%- assign featured_media = product.featured_media -%}

line : 66

{%- unless media.id == product.selected_or_first_available_variant.featured_media.id -%}

To

{%- unless media.id == product.featured_media.id -%}