no comic sans?
ooh that's cool! Is that tool going to support multiple glyph layers (as found in the MP2+ FONT formats)?

static s32 KernLookup(const std::vector<CKernPair>& kernTable, s32 kernStart, s32 chr)
{
auto iter = kernTable.cbegin() + kernStart;
for (; iter != kernTable.cend() && iter->GetFirst() == kernTable[kernStart].GetFirst() ; ++iter)
{
if (iter->GetSecond() == chr)
return iter->GetHowMuch();
}
return 0;
}