/* =============================================
   fonts-local.css – DSGVO-konforme, selbst gehostete Schriften
   Design "Industrial Trust"

   KEINE Google-Fonts-CDN (Datenschutz + render-blocking).
   WOFF2-Dateien gehören nach Resources/Public/Fonts/.

   SO AKTIVIEREN:
   1. WOFF2 der gewünschten Schnitte nach Resources/Public/Fonts/ legen:
        - Archivo (Display): 600, 700
        - Inter (Body): 400, 500, 700
        - IBM Plex Mono (technische Werte): 400, 600
      Bezugsquellen (SIL Open Font License, kommerziell nutzbar):
        Archivo        → fonts.google.com/specimen/Archivo  (Download → WOFF2 konvertieren)
        Inter          → rsms.me/inter/  (liefert WOFF2 direkt)
        IBM Plex Mono  → github.com/IBM/plex (OFL)
   2. Die @font-face-Blöcke unten EINKOMMENTIEREN und Dateinamen prüfen.
   3. cache:flush.

   Bis dahin greifen die System-Fallbacks aus den Site Settings
   (hintz.fonts.*), die Seite bleibt voll funktionsfähig.
   ============================================= */

/* ---- ARCHIVO (Display / Headlines) ----
@font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../Fonts/Archivo-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../Fonts/Archivo-Bold.woff2') format('woff2');
}
*/

/* ---- INTER (Body) ----
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../Fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../Fonts/Inter-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../Fonts/Inter-Bold.woff2') format('woff2');
}
*/

/* ---- IBM PLEX MONO (technische Werte) ----
@font-face {
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../Fonts/IBMPlexMono-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../Fonts/IBMPlexMono-SemiBold.woff2') format('woff2');
}
*/
