/* ============================================================

	Handles the basic typographical styles for the CBRAPress theme.
	More specific settings are done via the WordPress customizer.

============================================================ */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

p {
	margin-block-end: 0.5em;
}

h1 {
	text-transform: uppercase;
}

strong,
b {
	font-weight: bold !important;
}

a {
	color: var(--color-primary);
	transition: var(--transition-link-hover);

	&:hover {
		color: var(--color-primary-hover);
	}
}

body {
	font-family: var(--typography-body-font);
	font-size: var(--typography-body-size);
	font-weight: var(--typography-body-weight);
	letter-spacing: var(--typography-body-letterspacing);
}
