/* Self-hosted Inter font - system fallback chain */
/* Inter is commonly available as a system font. Use local() first, then system-ui fallback */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: local('Inter'), local('Inter-Regular');
}

/* If Inter is not installed locally, the system font stack in body will handle it:
   font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
   This eliminates the external Google Fonts dependency while maintaining visual consistency. */
