/* Scrolls. – lokale Schriften (DSGVO-konform, kein Google-CDN)
   Poppins liegt als Latin-Subset (woff, je ~12 KB) in assets/fonts/ – SIL Open Font License.
   Hobeaux Bold (Logo-Schrift, kommerzielle Lizenz) ist NICHT enthalten. Wer die Lizenz hat,
   legt assets/fonts/hobeaux-bold.woff2 ab – die Headlines greifen sie dann automatisch;
   sonst laufen Headlines in Poppins Bold. Das Logo selbst ist SVG und braucht keine Schrift. */

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.woff") format("woff");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hobeaux";
  src: url("../fonts/hobeaux-bold.woff2") format("woff2"),
       url("../fonts/hobeaux-bold.woff") format("woff"),
       url("../fonts/hobeaux-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
