/* ==============================================================
   fonts.css – lokal gehostete Schriftarten
   Ersetzt die Google-Fonts-CDN-Einbindung, damit keine
   Nutzer-IP an Google übertragen wird (siehe Datenschutz-Hinweis).

   Erwartet folgende Dateien in assets/fonts/ (siehe Anleitung):
     fredoka-500.woff2, fredoka-600.woff2, fredoka-700.woff2
     public-sans-400.woff2, public-sans-500.woff2, public-sans-600.woff2
   ============================================================== */

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

@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/public-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/public-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/public-sans-600.woff2') format('woff2');
}
