/* Lokal eingebundene Schriften (Latin-Subset inkl. deutscher Umlaute) */

/* --- Überschriften / Marke ---
   Gewünscht ist Trajan Pro (kommerzielle Adobe-Schrift, benötigt eine Webfont-Lizenz).
   Bis diese vorliegt, wird als freier, sehr naher Ersatz "Cinzel" verwendet
   (Google Fonts, SIL Open Font License 1.1) – ebenfalls römische Kapitalis.

   Trajan Pro einbinden: lizenzierte trajan-pro.woff2 nach assets/fonts/ legen und
   den folgenden @font-face-Block einkommentieren. Dank der Schriftreihenfolge in
   --font-head (siehe style.css) wird Trajan Pro dann automatisch bevorzugt. */

/*
@font-face {
  font-family: 'Trajan Pro';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/trajan-pro.woff2') format('woff2');
}
*/

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../assets/fonts/cinzel.woff2') format('woff2');
}

/* --- Fließtext --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter.woff2') format('woff2');
}
