/* Font Override CSS - Prevent Inter font loading */

/* Block Inter font loading completely */
@font-face {
  font-family: 'Inter';
  src: url('data:,') format('woff2');
  font-display: block;
}

/* Override any Inter font references */
* {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Specific overrides for common font classes */
.font-sans,
.font-serif,
.font-mono {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Override any potential Inter references */
[style*="Inter"],
[class*="inter"],
[class*="Inter"] {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}
