/* Self-hosted copy of the Manrope font, replacing the Google Fonts CDN
   link that used to be in templates/base.html. Only the "latin" unicode
   subset is kept (Compazable's UI text is English) rather than vendoring
   every language subset Google serves - one variable-weight woff2 file
   covers all five weights the app actually uses (400/500/600/700/800),
   matching the @font-face shape Google's own generated CSS used. */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(manrope-latin.woff2) format('woff2');
}
