/**
 * Atria Brand Fonts
 *
 * Defines web font faces for modern brand typography:
 * - Figtree (variable font, primary brand font)
 * - Unna (serif, accent font)
 *
 * All fonts are served from relative path: ./webFonts/
 *
 * font-display: swap ensures text is immediately visible using fallback fonts,
 * then swapped when web fonts load (prevents FOIT - Flash of Invisible Text)
 */


 @font-face {
  font-family: "Figtree";
  src: url('webFonts/Figtree/Figtree-VariableFont_wght.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: "Unna";
  src: url('webFonts/Unna/Unna-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Unna";
  src: url('webFonts/Unna/Unna-Italic.ttf') format('truetype');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Unna";
  src: url('webFonts/Unna/Unna-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Unna";
  src: url('webFonts/Unna/Unna-BoldItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}
