/* Inter Variable Font - Official Implementation */

/* Regular/Normal style */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/static/fonts/inter/InterVariable.woff2') format('woff2');
}

/* Italic style */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/static/fonts/inter/InterVariable-Italic.woff2') format('woff2');
}

/* Apply Inter as default font */
:root {
  font-family: 'Inter', sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* Fix for Chrome */
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
  }
}
