/* font-style: italic; font-weight: bold; remember to grab the right style(italic) and weight(bold,thin,etc) .ttf or .otf files. src: local(real font name)--> look locally first. Remember to provide fallback fonts JUST in case or for IE 
@font-face {
	font-family: Enter name to use;
	src: url('.otf') format('opentype');
}

@font-face {
	font-family: Enter name to use;
	src: url('.ttf') format('truetype');
} */

@font-face { /* Good for headlines, small type gets unreadable */
	font-family: 'HarabaraHandItalic';
	src: url('fonts/HarabaraHand-webfont.eot');
	src: local('☺'), url('fonts/HarabaraHand-webfont.woff') format('woff'), url('fonts/HarabaraHand-webfont.ttf') format('truetype'), url('fonts/HarabaraHand-webfont.svg#webfontmARvnGBm') format('svg');
	font-weight: normal;
	font-style: normal;
} /* http://www.fontsquirrel.com/fontfacedemo/HarabaraHand */

