/* ===== Brand Fonts ===== */
/* ============================================
   HEAVENLY FONT SYSTEM
   Primary global family: Montserrat.
   Runtime source is loaded consistently in every HTML entry through Google Fonts.
   Previous legacy font-face source dump has been removed.
   ============================================ */

:root {
	--heavenly-font-source: "Montserrat";
}

.font-brand,
.font-display,
.font-ui {
	font-family: var(--font-body);
}

/* ===== HEAVENLY Brand Wordmark =====
   Text-based Montserrat wordmark used in header, footer, and account UI.
   Context-specific size is controlled through CSS custom properties so the
   logo stays balanced without scattered width overrides. */
.logo-wordmark-img,
.account-auth-wordmark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-brand);
	font-style: normal;
	font-weight: var(--font-weight-semibold);
	text-transform: uppercase;
	white-space: nowrap;
	line-height: 1;
	color: #111111;
	text-decoration: none;
	user-select: none;
	text-rendering: geometricPrecision;
}

.logo-wordmark-img {
	font-size: var(--brand-logo-font-size, clamp(0.98rem, 1.05vw, 1.14rem));
	letter-spacing: var(--brand-logo-tracking, 0.22em);
	padding-inline-start: var(--brand-logo-tracking, 0.22em);
	inline-size: auto;
	max-inline-size: 100%;
}

.account-auth-wordmark {
	font-size: clamp(1.24rem, 2.6vw, 1.7rem);
	letter-spacing: 0.28em;
	padding-inline-start: 0.28em;
}
