/* Inter Font - Use local font only to avoid external blocking requests */
/* Removed Google Fonts @import to speed up first paint */
/* Fallback for local font if available */
@font-face {
  font-family: 'Inter-Local';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.ttf') format('truetype');
}

/* Alias the local font as 'Inter' so existing styles using 'Inter' continue to work */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.ttf') format('truetype');
}
