/* Aceve brand typefaces.
   Helvetica Now Display (Monotype) — licensed files provided by Aceve.
   Weights: Light 300, Regular 400, Medium 500, Bold 700.
   NB: the brand guidelines explicitly forbid Black weight.

   Office typeface: Arial (system-default, no load needed). */

@font-face {
  font-family: "Helvetica Now Display";
  src: url("./HelveticaNowDisplay-Lt.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("./HelveticaNowDisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("./HelveticaNowDisplay-Md.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("./HelveticaNowDisplay-Bd.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ac-font-brand:  "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ac-font-office: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --ac-font-mono:   ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
