/* AlongSans font-face map
   Place this file at: /fonts/alongsans.css
   Make sure the font files listed below are in the same /fonts folder.
*/

@font-face {
    font-family: "AlongSans";
    src:
      url("AlongSansThin.otf") format("opentype"),
      url("AlongSansThin.ttf") format("truetype");
    font-weight: 100; /* Thin */
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "AlongSans";
    src:
      url("AlongSansLight.otf") format("opentype"),
      url("AlongSansLight.ttf") format("truetype");
    font-weight: 300; /* Light */
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "AlongSans";
    src:
      url("AlongSans.otf") format("opentype"),
      url("Alongsans.ttf") format("truetype"); /* note lowercase S in file name you have */
    font-weight: 400; /* Regular */
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "AlongSans";
    src:
      url("AlongSansMedium.otf") format("opentype"),
      url("AlongsansMedium.ttf") format("truetype");
    font-weight: 500; /* Medium */
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "AlongSans";
    src:
      url("AlongSansSemiBold.otf") format("opentype"),
      url("AlongSansSemiBold.ttf") format("truetype");
    font-weight: 600; /* SemiBold */
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "AlongSans";
    src:
      url("AlongSansExtraBold.otf") format("opentype"),
      url("AlongSansExtraBold.ttf") format("truetype");
    font-weight: 800; /* ExtraBold */
    font-style: normal;
    font-display: swap;
  }
  
  /* Optional: smoother rendering on WebKit/Blink */
  html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  