Drupal - My Date in Twig is ignoring format
You are printing the node value directly, which is bypassing the field formatter and other things (since you are not using the render array).
Do this instead:
{{ content.field_date }}
This will render normally and ensure field formatter settings are respected.