/* Inter Font - Local Version with System Fallbacks */

/* If you want to use actual Inter font files, download them from Google Fonts and place them in this directory:
   - inter-400.woff2, inter-400.woff (Regular)
   - inter-500.woff2, inter-500.woff (Medium)
   - inter-600.woff2, inter-600.woff (SemiBold)
   - inter-700.woff2, inter-700.woff (Bold)
   - inter-800.woff2, inter-800.woff (ExtraBold)
*/

/* For now, using system font stack that closely matches Inter */
html, body {
  font-family: 
    'Inter', 
    -apple-system, 
    BlinkMacSystemFont, 
    'Segoe UI', 
    'Roboto', 
    'Helvetica Neue', 
    'Arial', 
    sans-serif;
}

/* Optional: Uncomment these font-face declarations when you have the actual font files */

/*
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('inter-400.woff2') format('woff2'),
       url('inter-400.woff') format('woff');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('inter-500.woff2') format('woff2'),
       url('inter-500.woff') format('woff');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('inter-600.woff2') format('woff2'),
       url('inter-600.woff') format('woff');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('inter-700.woff2') format('woff2'),
       url('inter-700.woff') format('woff');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('inter-800.woff2') format('woff2'),
       url('inter-800.woff') format('woff');
}
*/ 