/* =============================================================================
   AEO Fortin — Fonts (Gilroy, self-hosted)
   =============================================================================
   Fișierele de font NU sunt incluse în Sprint 1.
   Pentru a activa Gilroy:
     1. Verifică licența web pentru Gilroy.
     2. Pune fișierele în assets/fonts/gilroy/.
     3. Decomentează blocurile @font-face de mai jos.

   Cât timp fișierele lipsesc, stack-ul de fallback din tokens.css preia
   automat: -apple-system / BlinkMacSystemFont / Segoe UI / system-ui.

   Strategia de greutăți:
     - Light (300)    — hero text mare, lead paragraphs, accente
     - Semibold (600) — headings, butoane, labels, cards
     - Regular (400)  — body text (default) — folosit pe paragrafe lungi,
                        text editorial, conținut articol/glosar
     - Book (~450)    — alternativă pentru body (când e disponibil)

   Reguli stricte:
     - Body weight = Regular (400). Niciodată Light pe body long-form.
     - Light se rezervă pentru hero/lead/accent.
     - Semibold pe headings, butoane, labels, eyebrows.
   ========================================================================== */

/* ---------- Gilroy Light (300) -------------------------------------------- */
/*
@font-face {
	font-family: 'Gilroy';
	font-style:  normal;
	font-weight: 300;
	font-display: swap;
	src: url('../fonts/gilroy/gilroy-light.woff2') format('woff2'),
	     url('../fonts/gilroy/gilroy-light.woff')  format('woff');
}
*/

/* ---------- Gilroy Regular (400) — adaugă când e disponibil --------------- */
/*
@font-face {
	font-family: 'Gilroy';
	font-style:  normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/gilroy/gilroy-regular.woff2') format('woff2'),
	     url('../fonts/gilroy/gilroy-regular.woff')  format('woff');
}
*/

/* ---------- Gilroy Book (~450) — adaugă când e disponibil ----------------- */
/*
@font-face {
	font-family: 'Gilroy';
	font-style:  normal;
	font-weight: 450;
	font-display: swap;
	src: url('../fonts/gilroy/gilroy-book.woff2') format('woff2'),
	     url('../fonts/gilroy/gilroy-book.woff')  format('woff');
}
*/

/* ---------- Gilroy Semibold (600) ----------------------------------------- */
/*
@font-face {
	font-family: 'Gilroy';
	font-style:  normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/gilroy/gilroy-semibold.woff2') format('woff2'),
	     url('../fonts/gilroy/gilroy-semibold.woff')  format('woff');
}
*/

/* =============================================================================
   Notă pentru reviewer:
   --------------------------------------------------------------------------
   Toate blocurile @font-face sunt comentate intenționat.
   Tema se încarcă curat fără ele, cu stack de fallback system.
   Decomentează doar blocurile pentru fișierele care sunt prezente în
   assets/fonts/gilroy/. WordPress nu va emite warning pentru fișiere
   lipsă, dar browserul DA — de aceea declarațiile rămân comentate.
   ========================================================================== */
