For those that are interested – I’ve sort of figured it out. You have to get a cufont or convert a truetype font into cufon format and drop it into the “templates/ja_lead/js/cufon/” folder. Then you have to specify the font in this code found in the template.php
[PHP]<!– Cufont –>
<script language=”javascript” type=”text/javascript” src=”<?php echo $tmpTools->templateurl(); ?>/js/cufon/cufon.js”></script>
<script language=”javascript” type=”text/javascript” src=”<?php echo $tmpTools->templateurl(); ?>/js/cufon/PT_Sans_700.font.js”></script>
<script type=”text/javascript”>
Cufon.replace(‘#ja-topsl div.moduletable h3, div.jazin-section a span, h1.componentheading, .componentheading, #ja-col2 div.moduletable h3, #ja-col2 div.moduletable_default h3, #ja-col2 div.moduletable_menu h3, #ja-col2 div.moduletable_text h3’, { fontFamily: ‘PT Sans’ });
</script>
<!– // Cufont –>[/PHP]