/* ============================================================
   Hartken & Riaz — lokal gehostete Schriften (DSGVO: kein Google-Fonts-Remote-Load)
   ------------------------------------------------------------
   Inter (variabel, Gewicht 100–900) → Überschriften UND Fließtext/UI

   Die .woff2-Dateien gehören nach /fonts/ und werden mitdeployt.
   FEHLEN die Dateien, greift automatisch der System-Fallback
   (system-ui / SF Pro / Segoe UI) — die Seite bleibt lesbar.

   Dateien ablegen als:
     /fonts/inter.woff2         (Inter Variable, normal)
     /fonts/inter-italic.woff2  (Inter Variable, kursiv — optional)
   ============================================================ */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-italic.woff2") format("woff2");
}
