/* src/fonts/fonts.css */
@font-face {
    font-family: 'VarsityBold'; /* Choose a unique name for your font */
    src: url('./VarsityTeam-Bold.otf') format('opentype'); /* Path to your font file */
    font-weight: bold; /* Adjust if your font has specific weights */
    font-style: normal; /* Declares the specific font-style for this font file (e.g., normal, italic). */
    font-display: swap; /* Controls how a font file is displayed based on whether and when it is ready. 'swap' tells the browser to use a fallback font immediately and swap it with the custom font once it has loaded. */
  }
  
  
  @font-face {
    font-family: 'Emilio20';
    src: url('./emilio20.ttf') format('truetype'); 
    font-weight: bold; 
    font-style: normal;
    font-display: swap;
  }

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

  @font-face {
    font-family: 'LeagueGothicCondReg';
    src: url('./LeagueGothic-CondReg.otf') format('opentype'); 
    font-weight: bold; 
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'LeagueGothicReg';
    src: url('./LeagueGothic-Reg.otf') format('opentype'); 
    font-weight: bold; 
    font-style: normal;
    font-display: swap;
  }