/**
 * MARA Theme — Typography
 */

body {
	font-family: var(--mara-font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--mara-text);
	background-color: var(--mara-background);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--mara-font-heading);
	font-weight: 700;
	line-height: 1.2;
	color: var(--mara-dark);
}

a {
	color: var(--mara-primary);
	text-decoration: none;
	transition: color var(--mara-transition);
}

a:hover,
a:focus-visible {
	color: var(--mara-dark);
}

a:focus-visible {
	outline: 2px solid var(--mara-primary);
	outline-offset: 2px;
}
