never mind, found a free font, with @font-face kit and everything…
made it work – yay! I have a question though…
here’s entire CSS for this font:
[FONT=Courier New]@font-face {
font-family: 'PTSansNarrowRegular';
src: url('fonts/PTN57F-webfont.eot');
src: url('fonts/PTN57F-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/PTN57F-webfont.woff') format('woff'),
url('fonts/PTN57F-webfont.ttf') format('truetype'),
url('fonts/PTN57F-webfont.svg#PTSansNarrowRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'PTSansCaptionBold';
src: url('fonts/PTC75F-webfont.eot');
src: url('fonts/PTC75F-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/PTC75F-webfont.woff') format('woff'),
url('fonts/PTC75F-webfont.ttf') format('truetype'),
url('fonts/PTC75F-webfont.svg#PTSansCaptionBold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'PTSansCaptionRegular';
src: url('fonts/PTC55F-webfont.eot');
src: url('fonts/PTC55F-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/PTC55F-webfont.woff') format('woff'),
url('fonts/PTC55F-webfont.ttf') format('truetype'),
url('fonts/PTC55F-webfont.svg#PTSansCaptionRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'PTSansBoldItalic';
src: url('fonts/PTS76F-webfont.eot');
src: url('fonts/PTS76F-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/PTS76F-webfont.woff') format('woff'),
url('fonts/PTS76F-webfont.ttf') format('truetype'),
url('fonts/PTS76F-webfont.svg#PTSansBoldItalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'PTSansBold';
src: url('fonts/PTS75F-webfont.eot');
src: url('fonts/PTS75F-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/PTS75F-webfont.woff') format('woff'),
url('fonts/PTS75F-webfont.ttf') format('truetype'),
url('fonts/PTS75F-webfont.svg#PTSansBold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'PTSansItalic';
src: url('fonts/PTS56F-webfont.eot');
src: url('fonts/PTS56F-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/PTS56F-webfont.woff') format('woff'),
url('fonts/PTS56F-webfont.ttf') format('truetype'),
url('fonts/PTS56F-webfont.svg#PTSansItalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'PTSansRegular';
src: url('fonts/PTS55F-webfont.eot');
src: url('fonts/PTS55F-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/PTS55F-webfont.woff') format('woff'),
url('fonts/PTS55F-webfont.ttf') format('truetype'),
url('fonts/PTS55F-webfont.svg#PTSansRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'PTSansNarrowBold';
src: url('fonts/PTN77F-webfont.eot');
src: url('fonts/PTN77F-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/PTN77F-webfont.woff') format('woff'),
url('fonts/PTN77F-webfont.ttf') format('truetype'),
url('fonts/PTN77F-webfont.svg#PTSansNarrowBold') format('svg');
font-weight: normal;
font-style: normal;[/FONT]
}
so this is the one I’m using… PTSansCaptionRegular
but if I have font-weight:bold rule, will that make it bold? or do I have to specify the “bold” font-family (PTSansBoldItalic)?
can’t tell if my headines are bold or just look bold b/c they’re big… 
learned something new – yay!! 
thank you…