/**
 * Lokale Schriftarten für Computerservice Stahlberg
 * DSGVO-konform ohne externe Verbindungen
 *
 * ANLEITUNG: Fonts von https://gwfh.mranftl.com/fonts herunterladen
 * - Inter: Variable Font (Gewichte 400, 600, 700)
 * - Poppins: Variable Font (Gewichte 600, 700)
 *
 * Dateien hier ablegen: /fonts/inter/ und /fonts/poppins/
 */

/* ==========================================================================
   Inter - Sans-Serif (Fließtext)
   ========================================================================== */

/* Inter Regular (400) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Inter'),
         url('inter/Inter-Regular.woff2') format('woff2');
}

/* Inter Semi-Bold (600) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Inter'),
         url('inter/Inter-SemiBold.woff2') format('woff2');
}

/* Inter Bold (700) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Inter'),
         url('inter/Inter-Bold.woff2') format('woff2');
}

/* ==========================================================================
   Poppins - Sans-Serif (Überschriften)
   ========================================================================== */

/* Poppins Semi-Bold (600) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Poppins'),
         url('poppins/Poppins-SemiBold.woff2') format('woff2');
}

/* Poppins Bold (700) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Poppins'),
         url('poppins/Poppins-Bold.woff2') format('woff2');
}

/* ==========================================================================
   System Font Stack (Fallback)
   Nutzt vorinstallierte Schriftarten für beste Performance
   ========================================================================== */

:root {
    /* Optimierter Font-Stack ohne externe Abhängigkeiten */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
                    'Roboto', 'Helvetica Neue', Arial, sans-serif;

    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI',
                    'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
