/* Inter font - Minimal subset */
/* Only includes the font weights actually used in the site: 400, 600, and 700 */
/* This replaces the bloated version with hundreds of duplicate Unicode subset declarations */

/* 
 * IMPORTANT: You need to download the Inter font files and place them in this directory.
 * 
 * Option A: Download from Google Fonts
 * 1. Visit: https://fonts.google.com/specimen/Inter
 * 2. Select weights: Regular (400), SemiBold (600), Bold (700)
 * 3. Select subset: Latin (or Latin Extended if needed)
 * 4. Download and extract the TTF files
 * 5. Rename them to: Inter-Regular.ttf, Inter-SemiBold.ttf, Inter-Bold.ttf
 * 6. Place them in: mysite/fonts/
 * 
 * Option B: Download Variable Font (single file for all weights)
 * 1. Visit: https://github.com/rsms/inter/releases
 * 2. Download Inter-VariableFont_slnt,wght.ttf
 * 3. Place it in mysite/fonts/
 * 4. Uncomment the variable font section below and comment out the individual files section
 */

/* Individual font files (default) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(./Inter-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(./Inter-SemiBold.ttf) format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(./Inter-Bold.ttf) format('truetype');
}

/* Variable Font option (uncomment to use instead of individual files above)
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(./Inter-VariableFont_slnt,wght.ttf) format('truetype');
}
*/
