/* Inter Font Fallback - Using System Fonts for Offline Compatibility */
/* This provides a fallback font stack when Inter font files are not available */

/* Define Inter as system font fallback */
:root {
  --font-family-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

/* Apply Inter fallback to body and common elements */
body,
.font-inter,
.inter {
  font-family: var(--font-family-inter) !important;
}

/* Ensure consistent font rendering */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Font weight classes for consistency */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* Override any Inter font references */
[style*="font-family: Inter"],
[style*="font-family: 'Inter'"] {
  font-family: var(--font-family-inter) !important;
}
