you can use the attribute selector...(if you just need to select the span containing the style attribute as font..)
try this
$('span[style^="font-"]')
this should select the span with style starting with font-
or
$('span[style="font-weight: bold;"]')
fiddle