/* Static font declarations — kept under src/assets so Angular copies the
   font files to dist/assets and the CSS is served as a static asset.
   This prevents the Angular build from processing the fonts and
   emitting duplicates into the /media/ directory. */

@font-face {
  font-family: 'Open Sans';
  src: url('Open_Sans/OpenSans-VariableFont_wdth,wght.ttf') format('truetype-variations');
  font-weight: 300 800;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('Open_Sans/OpenSans-Italic-VariableFont_wdth,wght.ttf') format('truetype-variations');
  font-weight: 300 800;
  font-stretch: 75% 100%;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  src: url('material-symbols-outlined.woff2') format('woff2');
  font-display: block;
}

