<?php
	header("Content-type: text/css");
	require_once('../../../../wp-load.php');

	$google_font_1 = get_option(THEME_NAME."_google_font_1");
	$google_font_2 = get_option(THEME_NAME."_google_font_2");
	$google_font_3 = get_option(THEME_NAME."_google_font_3");

?>

/* Body font */
body {
	font-family:'<?php echo $google_font_3;?>', sans-serif;
}

/* Slider header text */
.slider .slider-image a .slider-overlay strong {
	font-family:'<?php echo $google_font_2;?>', cursive;
}

/* Blockquote font */
blockquote {
	font-family:'<?php echo $google_font_2;?>', cursive;
}

/* Blockquote second style font */
blockquote.style-2 {
	font-family:'<?php echo $google_font_3;?>', Sans-Serif;
}

/* Social buttons font */
.soc-button {
	font-family:<?php echo $google_font_1;?>;
}