/* ========================================
   AQUEM — LOCAL FONTS
   ========================================
   ANLEITUNG ZUM LOKAL-LADEN DER SCHRIFTEN:

   1. Auf https://gwfh.mranftl.com/fonts gehen (Google Webfonts Helper)
   2. "Playfair Display" suchen — gewünschte Stile auswählen:
      - regular (400)
      - 400 italic
      - 500
   3. "Modern Browsers" auswählen (woff2)
   4. ZIP herunterladen, in /assets/fonts/ entpacken
   5. Das Gleiche für "DM Sans" mit:
      - light (300)
      - regular (400)
      - 500

   Dateinamen nach dem Entpacken:
   /assets/fonts/playfair-display-v30-latin-regular.woff2
   /assets/fonts/playfair-display-v30-latin-italic.woff2
   /assets/fonts/playfair-display-v30-latin-500.woff2
   /assets/fonts/dm-sans-v15-latin-300.woff2
   /assets/fonts/dm-sans-v15-latin-regular.woff2
   /assets/fonts/dm-sans-v15-latin-500.woff2

   Falls die Versionsnummer abweicht, einfach die @font-face URLs unten anpassen.
   ======================================== */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-v30-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-v30-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/playfair-display-v30-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm-sans-v15-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-v15-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm-sans-v15-latin-500.woff2') format('woff2');
}
