/* Font Configuration for Schöning Türtechnik
 * Using system fonts for optimal performance
 * Can be replaced with custom web fonts if needed
 */

/* System Font Stack */
:root {
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    --font-serif: Georgia, Cambria, 'Times New Roman', Times, serif;
    --font-mono: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

/* Base typography */
html {
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optional: Load custom fonts
 * Uncomment and adjust paths if using custom web fonts
 */

/*
@font-face {
    font-family: 'CustomFont';
    src: url('/assets/fonts/customfont-regular.woff2') format('woff2'),
         url('/assets/fonts/customfont-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CustomFont';
    src: url('/assets/fonts/customfont-bold.woff2') format('woff2'),
         url('/assets/fonts/customfont-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*/
