/* Dreamfit — Futura BT font face declarations.
   Three real weights: 400 Book, 500 Medium, 700 Bold (each with italic).
   font-synthesis: none disables browser-faked bold/italic so we never
   render a weight we didn't actually ship. */

@font-face {
  font-family: 'Futura BT';
  src: url('/assets/fonts/02-Futura-Bk-BT-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura BT';
  src: url('/assets/fonts/01-Futura-Bk-BT-Book-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Futura BT';
  src: url('/assets/fonts/06-Futura-Md-BT-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura BT';
  src: url('/assets/fonts/05-Futura-Md-BT-Medium-Italic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Futura BT';
  src: url('/assets/fonts/04-Futura-Md-BT-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura BT';
  src: url('/assets/fonts/03-Futura-Md-BT-Bold-Italic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

html, body, input, select, textarea, button {
  font-synthesis: none;
}
