/* pedarco-fonts.css — Step 10: replaces Cufón (canvas/VML heading text replacement) with
   the real Google Font "Josefin Sans" at the Light (300) weight, matching Avisio's active
   kriesi_Avisio_general.font_heading = "josefine_small" (embedded Cufon file identifies
   itself as "Josefin Sans Std Light" by Santiago Orozco — theme-options-snapshot.md).

   Only font-family/font-weight are overridden here, on the exact selector list Cufón
   targeted in the original header.php ($applyCustomFontTo). Size, letter-spacing and
   line-height are left exactly as declared in the harvested style.css so nothing else
   about the layout changes. The #top-prefixed selectors below have higher specificity
   than style.css's bare `h1, h2, ...` rule, so this reliably wins without !important. */

#top h1,
#top h2,
#top h3,
#top h4,
#top h5,
#top h6,
#top legend,
#top .sliderheading,
.big_button strong,
.dynamicFont {
	font-family: 'Josefin Sans', Tahoma, Helvetica, sans-serif;
	font-weight: 300;
}
