/*
 * Selbst gehostete Schriften (DSGVO-konform, keine Verbindung zu Google).
 * Die .woff2-Dateien gehoeren in denselben Ordner (assets/fonts/).
 *
 * Download bequem ueber den Google Webfonts Helper:
 *   https://gwfh.mranftl.com/fonts
 *   - DM Sans: Styles 400, 500, 600, 700  -> "woff2" waehlen
 *   - Caveat:  Style 700                  -> "woff2" waehlen
 * Dateien danach exakt so benennen wie unten in src: url(...) angegeben.
 */

@font-face{
  font-family:'DM Sans';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('dm-sans-400.woff2') format('woff2');
}
@font-face{
  font-family:'DM Sans';
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url('dm-sans-500.woff2') format('woff2');
}
@font-face{
  font-family:'DM Sans';
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url('dm-sans-600.woff2') format('woff2');
}
@font-face{
  font-family:'DM Sans';
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url('dm-sans-700.woff2') format('woff2');
}
@font-face{
  font-family:'Caveat';
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url('caveat-700.woff2') format('woff2');
}
