@font-face {
	font-family: Gothic;
	font-style: normal;
	src: url("../fonts/font-gothic.woff") format('woff');
	font-display: swap;
}

@font-face {
	font-family: GothicBold;
	font-style: normal;
	src: url("../fonts/font-gothic-bold.woff") format('woff');
	font-display: swap;
}

:root {
	--gothic: "Gothic", serif;
	--gothic-bold: "GothicBold", serif;
}

body {
	font-family: var(--gothic), sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 400;
  	font-style: normal;
}

h1, h2, h3, h4 {
	font-family: var(--gothic-bold);
	font-weight: 700;
	line-height: 1.125;
	-moz-osx-font-smoothing: grayscale; /*(For Firefox)*/
	-webkit-font-smoothing: antialiased; /*(For Chrome and Safari)*/
}

strong {
	font-family: var(--gothic-bold);
	font-weight: 700;
}