/* 
	Type Faces
*/

@font-face {
	font-family: "Helvetica LT W01 Roman";
	src: url("../fonts/helvetica-roman.woff2") format("woff2"), url(".//fonts/helvetica-roman.woff") format("woff");
}

/* 
	Text
*/
.t-bold {
	font-weight: 700;
}

.t-italic {
	font-style: italic;
}

.t-uppercase {
	text-transform: uppercase;
}

.t-lowercase {
	text-transform: lowercase;
}

.t-left {
	text-align: left;
}

.t-center {
	text-align: center;
}

.t-right {
	text-align: right;
}


/* 
	Type Sizes 
*/

.t-min {
	font-size: 0.6rem;
	line-height: 1.2em;
}

.t-caption {
	font-size: 0.85rem;
	line-height: 1.2em;
}

.t-body {
	font-size: 1rem;
	line-height: 1.25em;
}

.t-h2 {
	font-size: 1.5rem;
	line-height: 1.25em;
}

.t-h1 {
	font-size: 2.5rem;
	line-height: 1.15em;
}

/* Desktop */
@media only screen and (min-width: 64rem) {
	.t-min {
		font-size: 0.6rem;
	}

	.t-caption {
		font-size: 0.85rem;
	}

	.t-body {
		font-size: 1rem;
	}

	.t-h2 {
		font-size: 1.25rem;
	}

	.t-h1 {
		font-size: 2.5rem;
	}
}

/* Desktop Large */
@media only screen and (min-width: 100rem) {
	.t-min {
		font-size: 0.75rem;
	}

	.t-caption {
		font-size: 1rem;
	}

	.t-body {
		font-size: 1.15rem;
	}

	.t-h2 {
		font-size: 1.5rem;
	}

	.t-h1 {
		font-size: 2rem;
	}
}