/* ==========================================================================
   Feldnotiz - Eigene Schriftart "InterOE"
   5 Schnitte, jeweils WOFF2 (primaer) + WOFF (Fallback fuer alte Browser).
   font-display: swap sorgt dafuer, dass sofort mit einer Systemschrift
   gerendert wird, bis die eigene Schrift geladen ist (kein Render-Blocking).
   ========================================================================== */

@font-face {
  font-family: 'InterOE';
  src: url('../fonts/InterOE-200-UltraLight.woff2') format('woff2'),
       url('../fonts/InterOE-200-UltraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'InterOE';
  src: url('../fonts/InterOE-300-Light.woff2') format('woff2'),
       url('../fonts/InterOE-300-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'InterOE';
  src: url('../fonts/InterOE-400-Regular.woff2') format('woff2'),
       url('../fonts/InterOE-400-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'InterOE';
  src: url('../fonts/InterOE-700-Bold.woff2') format('woff2'),
       url('../fonts/InterOE-700-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'InterOE';
  src: url('../fonts/InterOE-900-Black.woff2') format('woff2'),
       url('../fonts/InterOE-900-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
