/* ── Self-hosted fonts — no Google Fonts requests ── */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/roboto-latin-300-normal.woff2') format('woff2'),
       url('../fonts/roboto-latin-300-normal.woff')  format('woff');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-latin-400-normal.woff2') format('woff2'),
       url('../fonts/roboto-latin-400-normal.woff')  format('woff');
}

/******************** TYPOGRAPHY ********************/
html, body {
	font-size: 15px;
}

body {
    font-family: 'Roboto', sans-serif;
	font-weight: 300;
	line-height: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto', sans-serif;
}

h1 {
	font-size: 40px;
	font-weight: 400;
	line-height: 1.5;
}

h2 {
	font-size: 30px;
	font-weight: 400;
}

h3 {
	font-size: 20px;
	font-weight: 400;
}

h4 {
	font-size: 19px;
	font-weight: 400;
}

h5 {
	font-size: 18px;
	line-height: 1.3;
}

h6 {
	font-size: 16px;
}

h4, h5, h6 {
	font-weight: 400;
}

@media (min-width: 768px) {
	h1 {
		font-size: 50px;
	}

	h2 {
		font-size: 45px;
	}
}

p {
	margin-bottom: 20px;
}