/**
 * Typography Styles
 *
 * Font loading: Google Fonts - Bebas Neue 400, Roboto 400/400i/700
 * Loaded via single <link> in <head>
 *
 * @package Wayfinder
 * @since 1.0.0
 */

/* Base typography */
body {
	font-family: var(--font-body);
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-regular);
	line-height: 1.5;
	color: var(--color-dark-text);
}

/* Headings - Bebas Neue */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: var(--font-weight-regular);
	line-height: 1.1;
}

/* Navigation text */
.nav-link {
	font-family: var(--font-body);
	font-size: var(--font-size-nav);
	font-weight: var(--font-weight-bold);
}

/* Product card names */
.product-name {
	font-family: var(--font-body);
	font-size: var(--font-size-product-name);
	font-weight: var(--font-weight-bold);
}

/* Product prices */
.product-price {
	font-family: var(--font-body);
	font-size: var(--font-size-price);
	font-weight: var(--font-weight-regular);
}

/* Variant labels */
.variant-label {
	font-family: var(--font-body);
	font-size: var(--font-size-label);
	font-style: italic;
	font-weight: var(--font-weight-regular);
}
