/**
 * Self-hosted Fonts
 * Inter and Fira Code font declarations
 * 
 * To complete self-hosting:
 * 1. Download fonts from:
 *    - Inter: https://rsms.me/inter/
 *    - Fira Code: https://github.com/tonsky/FiraCode/releases
 * 2. Place .woff2 files in this directory
 * 3. Uncomment the @font-face declarations below
 * 4. Remove Google Fonts links from HTML files
 */

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

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

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

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

/* Fira Code - Regular (400) */
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./FiraCode-Regular.woff2') format('woff2');
}

/* Fira Code - SemiBold (600) */
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./FiraCode-SemiBold.woff2') format('woff2');
}

/*
 * Note: font-display: swap ensures text remains visible during font loading
 * This prevents FOIT (Flash of Invisible Text) and improves perceived performance
 */

