/* ============================================================================
   fonts.css — locally-hosted brand fonts (Cormorant Garamond, DM Sans, DM Mono).
   Bundled so the app and, critically, the server-rendered PDF embed the real
   brand typefaces with no network and no fallback-font look. There is no Google
   Fonts <link> anywhere in the app: these @font-face rules are the single
   offline source of truth, for both the screen app and the print/PDF route.
   ========================================================================== */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 300; font-display: swap;
  src: url('/demos/fmcg-demand-forecasting/assets/fonts/cormorant-garamond-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('/demos/fmcg-demand-forecasting/assets/fonts/cormorant-garamond-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('/demos/fmcg-demand-forecasting/assets/fonts/cormorant-garamond-500.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal; font-weight: 300; font-display: swap;
  src: url('/demos/fmcg-demand-forecasting/assets/fonts/dm-sans-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('/demos/fmcg-demand-forecasting/assets/fonts/dm-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('/demos/fmcg-demand-forecasting/assets/fonts/dm-sans-500.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Mono';
  font-style: normal; font-weight: 300; font-display: swap;
  src: url('/demos/fmcg-demand-forecasting/assets/fonts/dm-mono-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('/demos/fmcg-demand-forecasting/assets/fonts/dm-mono-400.woff2') format('woff2');
}
