/* font-face complete example
@font-face {
	font-family: 'YourCustomFontName';
	src: local('YourCustomFontName'),
		url('../fonts/yourcustomfontname.woff2') format('woff2'),
		url('../fonts/yourcustomfontname.woff') format('woff'),
		url('../fonts/yourcustomfontname.otf') format('opentype'),
		url('../fonts/yourcustomfontname.ttf') format('truetype'),
		url('../fonts/yourcustomfontname.eot?#iefix') format('embedded-opentype');
	font-weight: normal;
	font-style: normal;
}
*/

/* website content */
@font-face {
	font-family: 'Roboto'; /* Choose a descriptive name */
	src: local('Roboto'), /* Optional: checks for local installation first */
		url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
	font-weight: normal; /* Or specify a weight like bold, 500, etc. */
	font-style: normal; /* Or specify italic */
}
@font-face {
	font-family: 'HelveticaNeue'; /* Choose a descriptive name */
	src: local('HelveticaNeue'), /* Optional: checks for local installation first */
		url('../fonts/HelveticaNeue/HelveticaNeueRoman.otf') format('opentype');
	font-weight: normal; /* Or specify a weight like bold, 500, etc. */
	font-style: normal; /* Or specify italic */
}

/* code examples and design */
@font-face {
	font-family: 'JetBrains Mono'; /* Choose a descriptive name */
	src: local('JetBrainsMono'), /* Optional: checks for local installation first */
		url('../fonts/JetBrainsMono/JetBrainsMono-Regular.ttf') format('truetype');
	font-weight: normal; /* Or specify a weight like bold, 500, etc. */
	font-style: normal; /* Or specify italic */
}
@font-face {
	font-family: 'SFMono'; /* Choose a descriptive name */
	src: local('SFMono'), /* Optional: checks for local installation first */
		url('../fonts/SFMono/SFMonoRegular.otf') format('opentype');
	font-weight: normal; /* Or specify a weight like bold, 500, etc. */
	font-style: normal; /* Or specify italic */
}