I’m adding a basic Tweet share button to my website, within a div and is assigned a class name so I can control the placement etc in the CSS file, however the text font on the Tweet button is not Lucinda Grande, serif sans, but instead looks like Times New Roman. I’ve tried specifying the font family in the CCS file under the class, but it remains Times New Roman, any ideas?
Here’s my button code
<div class="socialShare">
<!-- Twitter Button -->
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.toptipsnailsandbeauty.co.uk" data-text="For all your nail art, manicure, pedicure, waxing massage needs visit us." data-count="none">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<!-- END Twitter Button -->
</div>