/* -----------------------------------------------------------------------------
   Schriften – Produktivbetrieb

   Aktueller Zustand: Es sind KEINE Webfonts eingebunden. Die Seite laeuft auf
   der System-Schriftfamilie. Das ist bewusst so und hat zwei Vorteile:
   kein zusaetzlicher Request (gut fuer LCP) und keine Verbindung zu
   Google-Servern (die Datenschutzerklaerung sagt lokale Auslieferung zu).

   Wer Archivo, Inter und IBM Plex Mono einsetzen moechte:
   1. woff2-Dateien nach user/themes/apptimieren/fonts/ legen
   2. Den Block unten entkommentieren
   3. Im <head> die beiden wichtigsten Schnitte vorladen, damit der Text
      nicht zweimal umbricht (Layout Shift / CLS):
      <link rel="preload" href="/user/themes/apptimieren/fonts/archivo-700.woff2"
            as="font" type="font/woff2" crossorigin>
      <link rel="preload" href="/user/themes/apptimieren/fonts/inter-400.woff2"
            as="font" type="font/woff2" crossorigin>

   font-display: swap sorgt dafuer, dass Text sofort sichtbar ist.
   size-adjust gleicht den Groessenunterschied zur Systemschrift aus und
   reduziert damit den Sprung beim Nachladen. Die Werte sind Startwerte und
   sollten nach dem Einbau einmal visuell geprueft werden.
----------------------------------------------------------------------------- */

/*
@font-face{font-family:'Archivo';src:url('../fonts/archivo-600.woff2') format('woff2');
  font-weight:600;font-style:normal;font-display:swap;size-adjust:100%}
@font-face{font-family:'Archivo';src:url('../fonts/archivo-700.woff2') format('woff2');
  font-weight:700;font-style:normal;font-display:swap;size-adjust:100%}
@font-face{font-family:'Inter';src:url('../fonts/inter-400.woff2') format('woff2');
  font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Inter';src:url('../fonts/inter-500.woff2') format('woff2');
  font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Inter';src:url('../fonts/inter-600.woff2') format('woff2');
  font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'IBM Plex Mono';src:url('../fonts/plexmono-400.woff2') format('woff2');
  font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'IBM Plex Mono';src:url('../fonts/plexmono-500.woff2') format('woff2');
  font-weight:500;font-style:normal;font-display:swap}
*/
