/**
 * Schriften – lokal aus dem Theme, nicht von Google (seit v1.30.0).
 *
 * Bis v1.29.1 wurden Inter und Playfair Display über
 * fonts.googleapis.com eingebunden. Dabei wird die IP-Adresse jedes
 * Besuchers an Google übertragen – ohne Einwilligung und ohne dass es
 * ein berechtigtes Interesse rechtfertigt, weil sich die Schriften
 * ebenso gut selbst ausliefern lassen. Das LG München I hat dafür 2022
 * Schadensersatz zugesprochen (Az. 3 O 17493/20); seither gibt es
 * Abmahnungen dazu. Die Schriften liegen deshalb jetzt im Ordner
 * fonts/ und werden von der eigenen Domain geladen.
 *
 * Beide Schriften stehen unter der SIL Open Font License 1.1, die das
 * Mitliefern ausdrücklich erlaubt (siehe fonts/OFL.txt).
 *
 * Fehlen die Dateien, ist das kein Fehler, sondern ein Rückfall auf
 * Georgia bzw. Segoe UI – die Seite bleibt vollständig benutzbar. Im
 * Backend erscheint dann ein Hinweis (leuchtturm_fonts_admin_notice()
 * in functions.php).
 *
 * font-display: swap sorgt dafür, dass der Text sofort sichtbar ist
 * und nicht erst nach dem Laden der Schrift erscheint.
 *
 * @package Leuchtturm_Norden
 */

/* ==========================================================================
   Inter – Fließtext, Navigation, Buttons
   ========================================================================== */

@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");
}

/* ==========================================================================
   Playfair Display – Überschriften
   ========================================================================== */

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/playfair-display-500.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/playfair-display-600.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/playfair-display-700.woff2") format("woff2");
}
