/* =============================================================
   Lokale Schriftarten: Inter + Montserrat (Variable Fonts)
   Ersetzt: https://fonts.googleapis.com/css2?family=Inter...&family=Montserrat...
   Die .ttf-Dateien liegen im SELBEN Ordner wie diese CSS.
   ============================================================= */

/* ---------- Inter ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;          /* voller Gewichtsbereich (Variable Font) */
  font-display: swap;
  src: url('Inter-VariableFont.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('Inter-Italic-VariableFont.ttf') format('truetype');
}

/* ---------- Montserrat ---------- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('Montserrat-VariableFont.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('Montserrat-Italic-VariableFont.ttf') format('truetype');
}

/* Optisches Skalieren von Inter (opsz-Achse) automatisch nutzen */
:root {
  font-optical-sizing: auto;
}
