/* If you need to update the fonts CSS file, change the version number in the
filename to ensure it is not cached by the browser */

/* Larsseit ships as WOFF2 (hinted with ttfautohint --windows-compatibility) for
crisp DirectWrite rendering on Windows. OTF kept as a fallback for any client
that can't handle WOFF2. */

@font-face {
  font-family: 'Larsseit';
  font-display: block;
  font-weight: 100 200;
  font-style: normal;
  src: url('./Larsseit-Thin.woff2') format('woff2'),
       url('./Type\ Dynamic\ -\ Larsseit\ Thin.otf') format('opentype');
  ascent-override: 100%;
}
@font-face {
  font-family: 'Larsseit';
  font-display: block;
  font-weight: 300;
  font-style: normal;
  src: url('./Larsseit-Light.woff2') format('woff2'),
       url('./Type\ Dynamic\ -\ Larsseit\ Light.otf') format('opentype');
  ascent-override: 95%;
}
@font-face {
  font-family: 'Larsseit';
  font-display: block;
  font-weight: 400;
  font-style: normal;
  src: url('./Larsseit-Regular.woff2') format('woff2'),
       url('./Type\ Dynamic\ -\ Larsseit.otf') format('opentype');
  ascent-override: 100%;
}
@font-face {
  font-family: 'Larsseit';
  font-display: block;
  font-weight: 500;
  font-style: normal;
  src: url('./Larsseit-Medium.woff2') format('woff2'),
       url('./Type\ Dynamic\ -\ Larsseit\ Medium.otf') format('opentype');
  ascent-override: 100%;
}
@font-face {
  font-family: 'Larsseit';
  font-display: block;
  font-weight: 600 700;
  font-style: normal;
  src: url('./Larsseit-Bold.woff2') format('woff2'),
       url('./Type\ Dynamic\ -\ Larsseit\ Bold.otf') format('opentype');
  ascent-override: 90%;
}
@font-face {
  font-family: 'Larsseit';
  font-display: block;
  font-weight: 800;
  font-style: normal;
  src: url('./Larsseit-ExtraBold.woff2') format('woff2'),
       url('./Type\ Dynamic\ -\ Larsseit\ ExtraBold.otf') format('opentype');
  ascent-override: 80%;
}
@font-face {
  font-family: 'Material';
  font-display: block;
  font-weight: 400;
  font-style: normal;
  src: url('./material-symbols-rounded-compressed.woff2') format('woff2');
}

html {
  /* Adjust font size */
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* Font variant */
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  /* Smoothing */
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}
