/*
 * Lokale Schriften (selbst gehostet, keine CDNs) – Theme diegode.
 * Hausschrift: Sora (SIL Open Font License 1.1) – für Überschriften UND Fließtext/UI.
 * Schnitte: 400 (Regular), 500 (Medium), 600 (SemiBold), 700 (Bold).
 * Konvention: <fontname>_<weight>.woff2  (aus den statischen TTFs konvertiert)
 */

/* Sora 400 – Regular (Fließtext) */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/sora_400.woff2') format('woff2');
}
/* Sora 500 – Medium (Akzente) */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/sora_500.woff2') format('woff2');
}
/* Sora 600 – SemiBold (Eyebrow, UI) */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/sora_600.woff2') format('woff2');
}
/* Sora 700 – Bold (Überschriften, Wortmarke) */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/sora_700.woff2') format('woff2');
}
