/* Fraga DEV — Webfonts
   Redsans is the brand's proprietary display/UI typeface.
   Two weights were provided: Light (300) and Regular (400). */

@font-face {
  font-family: "Redsans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../../fonts/Redsans-Light.otf") format("opentype");
}

@font-face {
  font-family: "Redsans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../fonts/Redsans.otf") format("opentype");
}

/* Regular is also mapped to the heavier weight slots so headings set in
   Redsans stay on-brand even when a component asks for 600/700.
   Redsans has no true bold; use letter-spacing + size for emphasis,
   or fall back to the sans stack for genuinely bold UI text. */
@font-face {
  font-family: "Redsans";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../../fonts/Redsans.otf") format("opentype");
}
