/*
 * Mont font family — demo weights shipped with the app.
 *   ExtraLight → weight 200
 *   Heavy      → weight 900
 *
 * Both builder preview (index.html loads this) and published funnel pages
 * (renderer emits a link to /fonts/fonts.css when theme.font === 'Mont')
 * resolve through this single file so weights never drift between the two.
 */
@font-face {
  font-family: 'Mont';
  src: url('/fonts/Mont-ExtraLightDEMO.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mont';
  src: url('/fonts/Mont-HeavyDEMO.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
