/**
 * Tokens typographiques globaux — WP Cursor
 *
 * Modifier uniquement ce fichier pour changer les polices du site.
 *
 * Titres      : Classica Bold (700) — letter-spacing -27 → -0.027em
 * Sous-titres : Goodfish
 * Corps       : DM Sans
 *
 * Polices chargées via l’extension Custom Fonts (Elementor).
 */

:root {
	--wpcursor-font-title: "Classica", Georgia, serif;
	--wpcursor-font-subtitle: "Goodfish", Georgia, serif;
	--wpcursor-font-body: "DM Sans", system-ui, -apple-system, sans-serif;

	/* Alias utilisés par les composants */
	--wpcursor-font-serif: var(--wpcursor-font-title);
	--wpcursor-font-sans: var(--wpcursor-font-body);

	--wpcursor-title-weight: 700;
	--wpcursor-title-letter-spacing: -0.027em;
}

/* Titres principaux */
.wpcursor-component :is(
	[class*="__heading"],
	[class*="__title-line--primary"]
) {
	font-family: var(--wpcursor-font-title);
	font-weight: var(--wpcursor-title-weight);
	letter-spacing: var(--wpcursor-title-letter-spacing);
}

/* Sous-titres */
.wpcursor-component :is(
	[class*="__title-line--accent"],
	[class*="__subtitle"]
) {
	font-family: var(--wpcursor-font-subtitle);
	font-style: normal;
	font-weight: 400;
	letter-spacing: normal;
}
