/* 
	Type Faces
*/

@font-face { 
	font-family: "GT America";  
	src: url('../fonts/GT-America-Standard-Light.woff2') format('woff2'), 
		url('../fonts/GT-America-Standard-Light.woff') format('woff'), 
		url('../fonts/GT-America-Standard-Light.ttf') format('truetype'); 
	font-display: swap;
}

/* 
	Text
*/
.text--italic {
	font-style: italic;
}
.text--uppercase {
	text-transform: uppercase;
}
.text--lowercase {
	text-transform: lowercase;
}
.text--align-left {
	text-align: left;
}
.text--align-center {
	text-align: center;
}
.text--align-right {
	text-align: right;
}
.type--gray {
	color: rgb(160, 160, 160);
}

/* 
	Type Sizes 
*/

.type--min {
	font-size: 12px;
	line-height: 120%;
}
.type--caption {
	font-size: 12px;
	line-height: 120%;
}

.type--body {
	font-size: 16px;
	line-height: 125%;
}

.type--display {
	font-size: 20px;
	line-height: 100%;
}

@media only screen and (min-width: 800px) {
	.type--min {
		font-size: 10px;
		line-height: 120%;
	}
	.type--caption {
		font-size: 12px;
		line-height: 120%;
	}

	.type--body {
		font-size: 18px;
		line-height: 125%;
	}

	.type--display {
		font-size: 24px;
		line-height: 100%;
	}
}