/* Fallback font loading for when Google Fonts fails */
@font-face {
font-display:swap;
    font-family: 'Inter-Local';
    src: url('/blog/wp-content/themes/pixelscan/fonts/./Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-optical-sizing: auto;
    font-style: normal;
    font-display: swap;
}

@font-face {
font-display:swap;
    font-family: 'Inter-Local';
    src: url('/blog/wp-content/themes/pixelscan/fonts/./Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-optical-sizing: auto;
    font-style: italic;
    font-display: swap;
}

/* CSS Custom Properties with Google Fonts priority */
:root {
    --font-inter: 'Inter', 'Inter-Local', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Performance optimization: reduce paint times */
* {
    font-feature-settings: "kern" 1;
    text-rendering: optimizeSpeed;
}