There are 4 types of MIDI messages which have 14bit data precision: PithBend, CC14, (N)RPN and SysEx. PithBend is the only one which utilize just one standard 3 byte message. CC14 use 2 CC messages, RPN use 4 CC messages, SysEx is an arbitrary length message.
Hardware MIDI standard is extremely slow, sending one message takes ~1ms. That is why common practice is using PutchBend from hi resolution faders (f.e. on Mackie surfaces).
Inside modern computes there is
no measurable difference in CPU consumption between such small data types (each message is stored/transfer within DAW in much bigger structures).
What can produce problems is the number of changes, not the resolution of each change. Sonar support crazy rates for such changes, but not only that is either ignored or crash synth, that can slow Sonar down to unusable level quickly. Such rates are not possible to achieve recording physical knobs, slow hardware within controllers does not send it so often, but when drawing by mouse it is good idea to use reasonable quantization.
Which maximum resolution is supported depends from particular parameter of particular synth. The same for supported MIDI messages. PitchBend, even when supported, is a bad choice in this case since it has special processing withing Sonar, leaving CC14 or (N)RPN for the purpose. If there is no documentation, "MIDI Learn" within plugin can quickly clarify supported message type. With maximum resolution that is more tricky, if there is some indication for parameter current value, it is possible to check weather tiny changes produce any effect on them.
Another way to increase the "resolution" while using standard CC is "assign matrix" within synth, in case it allows parameter subranges. F.e. fo frequency, if subrange is just 100Hz-200Hz, CC value have under 1 Hz resolution.
Common universal way to archive max supported by Synth resolution are already mentioned VST2/3 Automation parameters. They are 32 bit floats (for any parameter).
Another question is the possibility to enter these values using hardware controllers (entering by mouse is straightforward for all mentioned cases). I do not know any controller which produce hi resolution CC or (N)RPNs.
I have already mentioned hi resolution faders with PB, they are up to 10bit. So the solution is to use encoders and translate +- changes to coarse or fine changes. May be some Synths support Inc/Dec (N)RPNs, but universal approach is thru Automations. Organizing that practically in Sonar from my knowledge is only possible with AZ Controller.
PS. You are in my ban list, so probably you ignore all that. The information is for other users looking for extended answer on that (not unusual) question.