/**
 * System Font Stack
 * Uses native system fonts for optimal performance and security
 * No external requests, no CDN dependencies
 */

:root {
    /*
     * Modern system font stack
     * Prioritizes native fonts that look similar to Inter
     * Provides excellent readability across all platforms
     */
    --font-family-base:
        /* macOS/iOS */
        -apple-system,
        BlinkMacSystemFont,
        /* Segoe UI for Windows */
        "Segoe UI",
        /* Android */
        Roboto,
        /* Linux */
        "Helvetica Neue",
        Arial,
        /* Emoji fonts */
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        /* Fallback */
        sans-serif;
}

/* Apply to body */
body {
    font-family: var(--font-family-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
