/*
 * Outfit — self-hosted fallback stack for offline/restricted environments
 * Uses system fonts that closely match Outfit's geometric sans-serif style.
 * Drop-in replacement when fonts.bunny.net / fonts.googleapis.com are unreachable.
 */

/* Define 'Outfit' as a system-font alias so Filament's --font-family var works */
@font-face {
    font-family: 'Outfit';
    src: local('Segoe UI'),
         local('Helvetica Neue'),
         local('Arial'),
         local('sans-serif');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Override the :root variable as a safety net */
:root {
    --font-sans: 'Outfit', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        'Segoe UI', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
}
