/**
 * fonts.css — Lokal gehostete Schriftarten (DSGVO-konform)
 *
 * Ersetzt die Google-Fonts-Einbindung, damit keine IP-Adressen mehr
 * ohne Consent an Google-Server (USA) übertragen werden.
 *
 * Erwartete Dateien im /fonts/-Verzeichnis (WOFF2-Format):
 *   inter-400.woff2, inter-500.woff2, inter-600.woff2,
 *   inter-700.woff2, inter-800.woff2, inter-900.woff2
 *   inter-tight-600.woff2, inter-tight-700.woff2, inter-tight-800.woff2
 *
 * Font-Files runterladen: https://gwfh.mranftl.com/fonts
 *   → Inter (weights 400, 500, 600, 700, 800, 900)
 *   → Inter Tight (weights 600, 700, 800)
 *   → Charsets: latin + latin-ext (ä, ö, ü, ß werden korrekt gerendert)
 *   → Format: woff2 (modern, alle Browser)
 *
 * Lizenz: Inter + Inter Tight stehen unter SIL Open Font License 1.1
 *   → legal, kostenlos, redistributable
 */

/* ============================================================
   INTER (Standard-Body-Schrift)
   ============================================================ */

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

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

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

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

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

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


/* ============================================================
   INTER TIGHT (Display-Schrift für Headlines)
   ============================================================ */

@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-tight-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/inter-tight-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/inter-tight-800.woff2') format('woff2');
}
