/* Optimized Inter Font - Only includes weights/styles actually used in the project */

/* Based on analysis:
 * - Used weights: 400 (Regular), 500 (Medium), 600 (SemiBold), 700 (Bold), 800 (ExtraBold)
 * - Not used: Variable fonts, Display fonts, Italic variants, Light weights (100-300), Black (900)
 * 
 * This reduces font files from 38 to 5, saving ~25-28MB
 */

/* Static fonts - Only normal style, only used weights */
@font-face { 
    font-family: "Inter"; 
    font-style: normal; 
    font-weight: 400; 
    font-display: swap; 
    src: url("Inter-Regular.woff2") format("woff2"); 
  }
  
  @font-face { 
    font-family: "Inter"; 
    font-style: normal; 
    font-weight: 500; 
    font-display: swap; 
    src: url("Inter-Medium.woff2") format("woff2"); 
  }
  
  @font-face { 
    font-family: "Inter"; 
    font-style: normal; 
    font-weight: 600; 
    font-display: swap; 
    src: url("Inter-SemiBold.woff2") format("woff2"); 
  }
  
  @font-face { 
    font-family: "Inter"; 
    font-style: normal; 
    font-weight: 700; 
    font-display: swap; 
    src: url("Inter-Bold.woff2") format("woff2"); 
  }
  
  @font-face { 
    font-family: "Inter"; 
    font-style: normal; 
    font-weight: 800; 
    font-display: swap; 
    src: url("Inter-ExtraBold.woff2") format("woff2"); 
  }
  @font-face { 
    font-family: "Inter"; 
    font-style: italic; 
    font-weight: 400; 
    font-display: swap; 
    src: url("Inter-Italic.woff2") format("woff2"); 
  }
  